home *** CD-ROM | disk | FTP | other *** search
/ Game.EXE 2005 November / Game.EXE_11_2005_DVD.iso / Flash Games / Robo Farmer / robofarmer.swf / scripts / DefineButton2_747 / BUTTONCONDACTION on(press).as next >
Encoding:
Text File  |  2005-09-23  |  234 b   |  14 lines

  1. on(press){
  2.    if(_root.money <= 249)
  3.    {
  4.       return undefined;
  5.    }
  6.    if(_root.money >= 250)
  7.    {
  8.       _root.money -= 250;
  9.       _root.healthpoints += 10;
  10.       _root.sndthump.start();
  11.       return undefined;
  12.    }
  13. }
  14.